home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gigarom 1
/
Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso
/
FILES
/
HYP
/
H-I
/
HyperHackers.cpt
/
Hyper-Hackers Queue 1.0
/
card_3209.txt
< prev
next >
Wrap
Text File
|
1989-02-26
|
1KB
|
54 lines
-- card: 3209 from stack: in.0
-- bmap block id: 0
-- flags: 0000
-- background id: 3797
-- name:
-- part contents for background part 1
----- text -----
From: PUGH@NMFECC.ARPA
Here is a simple script to add to your Home stack that is very handy for
dealing with the Help pages:
on doMenu x
if x is "Help" then
go to card "HyperTalk" of stack "Help"
else
pass doMenu
end if
end doMenu
Here's another one that works with the extendend keyboard (USS Saratoga):
On functionkey whatkey
if whatkey is 1 then
type "z" with CommandKey - undo!
else if whatkey is 2 then
type "x" with CommandKey - cut!
else if whatkey is 3 then
type "c" with CommandKey - copy!
else if whatkey is 4 then
type "v" with CommandKey - paste! Like they say!
else if whatkey is 5 then
choose browse tool - browse
else if whatkey is 6 then
choose button tool - button
else if whatkey is 7 then
choose field tool - field! Without a menu!
else if whatkey is 8 then
type "x" with commandkey - Cut whatever is seleted
domenu "background" - enter the background
type "v" with commandkey - Paste it
domenu "background" - leave the background
end if
end functionkey
-- part contents for background part 45
----- text -----
DoMenu and FunctionKeys